home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000352_fdc@columbia.edu_Mon Sep 9 09:52:14 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  53 lines

  1. Article: 13684 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Can Kermit be used for dialing *IN* to a PC (NT/2000)?
  6. Date: 9 Sep 2002 09:52:06 -0400
  7. Organization: Columbia University
  8. Lines: 36
  9. Message-ID: <ali926$22r$1@watsol.cc.columbia.edu>
  10. References: <00A13B6C.8E682BF9@SendSpamHere.ORG>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1031579527 3552 128.59.39.139 (9 Sep 2002 13:52:07 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 9 Sep 2002 13:52:07 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13684
  16.  
  17. In article <00A13B6C.8E682BF9@SendSpamHere.ORG>,
  18.  <system@SendSpamHere.ORG> wrote:
  19. : Hello,
  20. : I have a client that wants to be able to dial into a PC and transfer files.
  21. : They've been doing so successfully on an Alpha running VMS but would like a
  22. : "backup" capability at another site that has only a PC.
  23. : Before I go off into PC insanity trying to implement this, has anybody done
  24. : this or anything similar with Kermit?
  25. Clarification: Of course you can't dial and log in to Windows and get a
  26. text-based shell like you can do with VMS, Unix, and other conventional
  27. operating systems.  But you can still set up Kermit on Windows to accept
  28. incoming calls and provide a file-transfer and management service.  There
  29. are various ways to do this, of which the most user-friendly is described
  30. here:
  31.  
  32.   http://www.columbia.edu/kermit/k95host.html
  33.  
  34. You can also write a simple Kermit script that awaits and handles incoming
  35. calls, something like:
  36.  
  37.   set port tapi
  38.   set speed 57600
  39.   set flow rts/cts
  40.   while true {
  41.       cd some-directory
  42.       answer 0
  43.       if success server
  44.       close connection
  45.   }
  46.  
  47. Obviously many variations and refinements are possible.
  48.  
  49. - Frank
  50.